home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 1.iso / icons / animator.zip / RC.H < prev    next >
C/C++ Source or Header  |  1993-02-18  |  4KB  |  101 lines

  1. #ifndef __RC_INCLUDED__
  2. #define __RC_INCLUDED__
  3.  
  4. #ifdef RC_INVOKED
  5.     #define ID(x)   x
  6. #else
  7.     #define ID(x)   (LPSTR)MAKEINTRESOURCE(x)
  8. #endif
  9.  
  10. #define MAINICON        ID(1)
  11. #define CHILDICON       ID(2)
  12. #define MAINMENU        ID(3)
  13. #define CHILDMENU       ID(4)
  14. #define ACCELTABLE      ID(5)
  15. #define SETTINGSDLG     ID(6)
  16. #define ABOUT           ID(7)
  17. #define SHOWTASKS       ID(8)
  18.  
  19. /*            DIALOG BOX, MENU, AND STRINGTABLE ID's               */
  20.  
  21. #define IDD_LISTBOX                 800   // id of listbox in showtaskdlg
  22. #define IDD_EDIT                    801   // id of editbox in timerdlg
  23. #define IDD_RUNNING                 802
  24. #define IDD_NOTRUNNING              803
  25. #define IDD_LINKFILENAME            804
  26. #define IDD_AUTOANIMATE             805
  27.  
  28. // Menu ID's
  29. #define IDM_FIRSTCHILD              1
  30. #define IDM_NEW                     16
  31. #define IDM_CLOSE                   17
  32. #define IDM_EXIT                    18
  33. #define IDM_CASCADE                 WM_MDICASCADE
  34. #define IDM_TILE                    WM_MDITILE
  35. #define IDM_ARRANGE                 WM_MDIICONARRANGE
  36. #define IDM_ABOUT                   100
  37. #define IDM_GO                      101
  38. #define IDM_SHOWTASKS               102
  39. #define IDM_SETTIMER                103
  40. #define IDM_INSERTICON              104
  41. #define IDM_DELETEICON              105
  42. #define IDM_OPEN                    106
  43. #define IDM_SAVE                    107
  44. #define IDM_SAVEAS                  108
  45. #define IDM_STOP                    109
  46. #define IDM_ADDICON                 110
  47. #define IDM_SETTINGS                111
  48. #define IDM_CLOSEALL                112
  49. #define IDN_NEWTASK                 113  // IDN_ means Notify message.
  50. #define IDN_EXITTASK                114
  51.  
  52. /*                   STRINGTABLE DEFINITIONS                     */
  53.  
  54. #define IDS_ListBoxSize             600
  55. #define IDS_ListBoxUpdate           601
  56. #define IDS_AddFileError            602
  57. #define IDS_TimeIntervalErr         603
  58. #define IDS_NumInterval             604
  59. #define IDS_IconsSetting            605
  60. #define IDS_TimeIntRange            606
  61. #define IDS_NumIconsErr             607
  62. #define IDS_DoubleTasks             608
  63. #define IDS_MaxAnimations           609
  64. #define IDS_TaskListErr             610
  65. #define IDS_TimeDlgRange            611
  66. #define IDS_AppTitle                612
  67. #define IDS_AppName                 613
  68. #define IDS_ChildClassName          614
  69. #define IDS_StatBarClassName        615
  70. #define IDS_InvalidFile             616
  71. #define IDS_TimerFail               617
  72. #define IDS_IconsDelete             618
  73. #define IDS_AlreadyAnimating        619
  74. #define IDS_LoadLibrary             620
  75. #define IDS_ExtractIcon             621
  76. #define IDS_NotifyFail              622
  77. #define IDS_Untitled                623
  78. #define IDS_PleaseLoadApp           624
  79.  
  80. #define IDS_TimerIntervalKey        625
  81. #define IDS_InfoSection             626
  82. #define IDS_NumIconsKey             627
  83. #define IDS_LinkFileKey             628
  84. #define IDS_IconsSection            629
  85. #define IDS_IconFrameKey            630
  86. #define IDS_Extension               631
  87. #define IDS_QueryEnd                632
  88. #define IDS_LinkFileErr             633
  89. #define IDS_TooManyIcons            634
  90. #define IDS_AutoAnimateKey          635
  91. #define IDS_AutoAnimateErr          636
  92. #define IDS_InvalidPath             637
  93. #define IDS_WinVer                  638
  94. #define IDS_InvalidScript           639
  95. #define IDS_LinkDlgTitle            640
  96. #define IDS_NoIcons                 641
  97. #define IDS_NoDropOnWhileAnimate    642
  98. #define IDS_PleaseSelect            643
  99.  
  100. #endif /* __RC_INCLUDED */
  101.